home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / gui / gtldv374.lha / GadUtil / Docs / AutoDocs / 46.GU_NodeDown < prev    next >
Text File  |  1996-05-14  |  743b  |  30 lines

  1. gadutil.library/GU_NodeDown                       gadutil.library/GU_NodeDown
  2.  
  3.    NAME
  4.     GU_NodeDown -- Move a node one step towards the end of the list
  5.  
  6.    SYNOPSIS
  7.     success = GU_NodeDown(node, list)
  8.     D0,SR(Z)              A0    A1
  9.  
  10.     BOOL GU_NodeDown(struct Node *, struct List *);
  11.  
  12.    FUNCTION
  13.     Move a node one step downwards in a list. To do the opposite, see
  14.     GU_NodeUp().
  15.  
  16.    INPUTS
  17.     node - The node to move.
  18.     list - The list that the node is a part of.
  19.  
  20.    RESULT
  21.     success - TRUE if the node could be moved, else FALSE.
  22.     SR (Z)  - 0 if node could be moved, else 1.
  23.  
  24.    BUGS
  25.     none known
  26.  
  27.    SEE ALSO
  28.     GU_AddTail(), GU_ClearList(), GU_DetachList(), GU_AttachList()
  29.     GU_FindNode(), GU_NodeUp(), GU_CountNodes(), GU_NewList(), GU_SortList()
  30.